CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - hash table

搜索资源列表

  1. iprout-hash

    0下载:
  2. 一种基于hash表的IP路由表搜索技术,在WINDOWS下VC++实现-a hash table based on the IP routing table search technology, under the VC WINDOWS
  3. 所属分类:网络编程

    • 发布日期:2008-10-13
    • 文件大小:10141
    • 提供者:张文宾
  1. hash.c++

    0下载:
  2. 一个开源的哈希表源码实现,算法比较简短精简-a revenue source to achieve hash table, the relatively brief concise algorithm
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:1357
    • 提供者:kanyu
  1. hash

    0下载:
  2. Hashing is a technique that allows insertions, deletions and searches of records according to keys in constant average time. In this tutorial, we will construct a hash table and implement its operations.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1445
    • 提供者:jovi
  1. hash

    0下载:
  2. /* * The internal form of a hash table. * * The table is an array indexed by the hash of the key collisions * are resolved by hanging a linked list of hash entries off each * element of the array. Although this is a really simple desig
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:7680
    • 提供者:llr
  1. hash-tablet用链地址法构造一个哈希表

    0下载:
  2. 用链地址法构造一个哈希表,并且能实现查找,输出,删除等的操作-Add method with a chain to construct a hash table, and can achieve search, export, or delete operation
  3. 所属分类:Windows编程

    • 发布日期:2017-03-25
    • 文件大小:1558
    • 提供者:古狸
  1. Hash

    0下载:
  2. 试构造一个算法,从键盘输入一组关键字,按哈希函数H(key) = key MOD 13和链地址法处理冲突构来造哈希表,能对关键字进行查找并显示。 如(19,14,23,1,68,20,84,27,55,11,10,79,33). -Try to construct a method, a set of keywords from the keyboard, press the hash function H (key) = key MOD 13 and the address of th
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:2214
    • 提供者:王玉珏
  1. data_structure

    0下载:
  2. 数据结构中最经常用到的,包括链表、双链表、二叉树、平衡二叉树、哈希表等-Data structure the most frequently used, including the list, double linked lists, binary tree, balanced binary tree, hash table, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:16523
    • 提供者:金灵
  1. hash

    2下载:
  2. 为班级30个人的姓名设计一个哈希表,假设姓名用汉语拼音表示。要求用除留余数法构造哈希函数,用线性探测再散列法处理冲突,平均查找长度上限为2.-The names of 30 people for the class to design a hash table, assuming that the name in pinyin. Required to remain with the addition of more than a few method to construct hash fun
  3. 所属分类:Data structs

    • 发布日期:2016-01-26
    • 文件大小:13881
    • 提供者:sammie
  1. HashTable_Demo

    0下载:
  2. 哈希表设计:数组,结构体-hash wishes the form is designed: The array, structure body
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-29
    • 文件大小:22530
    • 提供者:梁伟
  1. Hash

    0下载:
  2. 利用Hash技术统计C源程序中关键字的频度:扫描一个C源程序,用Hash表存储该程序中出现的关键字,并统计该程序中的关键字出现的度。用线性探测法解决Hash冲突。设Hash函数为:Hash(Key)=[(Key的首字母序号)*100+(Key的尾字母序号)] Mod 41。关键字39个。-Hash statistics using C source code in the frequency of keywords: Scanning a C source program, using Hash
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:10568
    • 提供者:william_chwenyu
  1. dictionary

    0下载:
  2. 模拟电子字典查询功能,运用哈希表知识进行功能实现。-Analog electronic dictionary query function, the use of hash table functions knowledge.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:2102
    • 提供者:sunfuquan
  1. paixu

    0下载:
  2. hash表的使用,使用hash函数并包含解决冲突的方法-the use of hash table, use the hash function and includes a solution to the conflict
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-04
    • 文件大小:2330
    • 提供者:chenyuehong
  1. hash

    0下载:
  2. 线性探测再散列,解决哈希表冲突问题,仅供参考。-Linear detection of re-hash, hash table to resolve the conflict, for informational purposes only.
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:1404
    • 提供者:刘飞
  1. java3

    0下载:
  2. 创建一个包装学生信息的java类:包括name,number, age,height,创建该对象的数组用于表示n个学生的信息,并具备显示所有学生信息,查找某个学生的功能。(有输入流,输入数据,使用hash表存储数据) 包含相关代码和运行结果-Create a package of java category of student information: including name, number, age, height, create the object array used
  3. 所属分类:Java Develop

    • 发布日期:2017-04-03
    • 文件大小:13732
    • 提供者:zhou
  1. hash

    0下载:
  2. (1)为班级学生花名册建立开桶或闭桶散列表。 (2)友好性:界面要友好,输入有提示,尽量展示人性化。 (3)可读性:源程序代码清晰、有层次。 (4)健壮性:对输入的数据有纠错处理。-(1) class roster for the establishment of open or closed barrels barrels hash table. (2) friendly: the interface should be friendly, to bring in people w
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-04-03
    • 文件大小:6368
    • 提供者:yangyang
  1. hash_functions_src

    0下载:
  2. 散列函数源代码,散列表通常是关键字和值对应的数据结构,散列函数用于把关键字映射到相应的数组索引号,由于散列表中每个元素访问到的概率不同,所以应该选用不同的散列函数,以提高程序的查找效率.-Hash function source code, hash table is usually the value of keywords and corresponding data structure, hash function used for the keywords mapped to the c
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:81377
    • 提供者:wuzh
  1. Hash

    0下载:
  2. 一个哈希表 大家可以看看,参考下还是可以的啊-A hash table
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1807
    • 提供者:徐绗
  1. hastable_master

    0下载:
  2. hash table data structure in c language. Macro based.
  3. 所属分类:数据结构

    • 发布日期:2018-01-02
    • 文件大小:248832
    • 提供者:rpachecobr
  1. hash.tar

    0下载:
  2. hash table routines in C
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-01-07
    • 文件大小:3072
    • 提供者:RobertFetter
  1. hash

    0下载:
  2. 使用hash表实现快速插入数据,快速查询数据(Using hash table to quickly insert data and quickly query data)
  3. 所属分类:其他

    • 发布日期:2018-05-03
    • 文件大小:11264
    • 提供者:sll-灵儿
« 1 2 34 5 6 7 8 9 10 ... 33 »
搜珍网 www.dssz.com